How to use Thread?
1749
14-Oct-2015
Updated on 18-Sep-2020
Tarun Kumar
14-Oct-2015Here we provide two ways to create threads:
ü detachNewThreadSelector: toTarget: withObject:
ü Create instances of NSThread and start them at a later time using the "start" method.
ü NSThread is not as capable as Java's Thread class, it lacks
ü Built-in communication system.
ü An equivalent of "join()"